nav {
    height: 80px;
    display: flex;
    flex-direction: row;
    margin-top: 20px;
}

nav .nav-button {
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-basis: 0;
    flex-grow: 1;
    cursor: pointer;
}

nav .nav-button:not(.active) {
    margin-left: 0;
}

nav .nav-button:not(.active) ~ .nav-button {
    margin-left: 10px;
}

nav .nav-button.active {
    display: none;
}

nav .nav-button p {
    font-family: 'Josefin Sans';
    font-weight: 600;
    font-size: 13px;
    text-align: center;

    line-break: loose;

    color: white;
}